#myCanvas {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -2;
}


.bg-custom-1 {
    opacity: 1;
    height: 60px;
    align-items: center;
    background-color: 	#05386B;

}

#burger_outer{
    width: 60px;
    height: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.burger_icon_divs{
    height: 5px;
    width: 40px;
    background-color: white;
    margin: 5px;
    border-radius: 10px;
    
}


#outer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    padding-top: 30px;
    font-size: 1.2em;
}

#img_div{
    margin-top: 7px;
    width: 400px;
    height: 550px;
    background-color: rgb(19, 5, 34);
    box-shadow: rgb(132, 134, 136) -5px 1px 15px;
    border-radius: 10px;
}

#bull_img{
    height: 550px;
    width: 400px;
    border-radius: 10px 0 0 10px;
}


#formdiv {
    background-color: #05386B;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7px;
    width: 500px;
    height: 550px;
    transition: all 100ms ease-out 0s;
    box-shadow: rgba(0, 0, 0, 0.19) 5px 1px 15px;
    overflow: visible;
    color: #edf5e1;
    border-radius: 0 10px 10px 0px;
}


#button-div {
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    color: #edf5e1;
    font-weight: 500;
    font-size: 1.5em;
    background-color: #05386B;
    
}

#seperator {
    height: 60px;
    width: 1px;
    border: solid 4px #557A95;
    opacity: 0.7;
    border-radius: 10%;
}

.buttons {
    height: 60px;
    width: 233px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    transition-property: all;
    transition-duration: 50ms;
    transition-timing-function: ease-out;
}

.buttons:hover {
    font-size: 1.2em;
}

#su_b{
    background-image: linear-gradient(to left,#557A95,#05386B)  ;
}

#inner_formdiv { 
    border-top: solid 4px rgba(85,122,149, 0.9);
    border-bottom: solid 4px rgba(85,122,149, 0.9);
    height: 430px;
    width: 470px;
    padding-bottom: 20px;
    overflow: hidden;
}

#register_form,#login_form{
    height: 420px;
    overflow: auto;
}

.some{
    display: none;
    margin-left: -15px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.forms{
    display: inline-block;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

#login_form{
    margin-top: 300px;
}

#table, #login_table {
    margin-left: 1.5vw;
    margin-top: 1.8vh;
}

.topmargin{
    margin-top: 30px;
}


.lables {
    font-size: 0.85em;
}

.inputs {
    width: 420px;
    border: 0;
    border-bottom: solid 2px rgba(248, 248, 248, 0.6);
    height: 50px;
    outline: none;
    background-color: #05386B;
    color: #edf5e1;
}

#register_div {
    height: 60px;
    padding-top: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-color: blanchedalmond; */
    overflow: hidden;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn{
    margin-top: 30px;
    border: 0;
    background-color: #05386B;
    border: solid 2px #edf5e1;
    color: #edf5e1;
    border-radius: 20px;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    /* box-shadow: 1px 1px 5px #edf5e1; */
    box-shadow: rgba(0, 0, 0, 0.19) 0px 5px 6px, rgba(0, 0, 0, 0.23) 0px 5px 6px;
}

.btn:hover{
    background-color: #edf5e1;
    border-color: #05386B;
    color: #05386B;
    box-shadow: none;
}


@media screen and (max-width: 950px){
    #img_div{
        display: none;
    }
    #burger_outer{
        display: none;
    }
    #formdiv{
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        border-radius: 10px;
    }
    
}


::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: transparent;
}
::-webkit-scrollbar-thumb{
    background-color: rgba(237,245,225,0.6);
    border-radius: 7px;
}

